home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / ip / ka9q / src.arc / AX25DUMP.C < prev    next >
C/C++ Source or Header  |  1989-08-19  |  4KB  |  186 lines

  1. #include <stdio.h>
  2. #include "global.h"
  3. #include "mbuf.h"
  4. #include "ax25.h"
  5. #include "timer.h"
  6. #include "lapb.h"
  7. #include "trace.h"
  8. #include "socket.h"
  9.  
  10. static char *decode_type __ARGS((int16 type));
  11.  
  12. /* Dump an AX.25 packet header */
  13. void
  14. ax25_dump(bpp,check)
  15. struct mbuf **bpp;
  16. int check;    /* Not used */
  17. {
  18.     char tmp[20];
  19.     char control,pid,seg;
  20.     int16 type;
  21.     int unsegmented;
  22.     struct ax25 hdr;
  23.     struct ax25_addr *hp;
  24.  
  25.     printf("AX25: ");
  26.     /* Extract the address header */
  27.     if(ntohax25(&hdr,bpp) < 0){
  28.         /* Something wrong with the header */
  29.         printf(" bad header!\n");
  30.         return;
  31.     }
  32.     pax25(tmp,&hdr.source);
  33.     printf("%s",tmp);
  34.     pax25(tmp,&hdr.dest);
  35.     printf("->%s",tmp);
  36.     if(hdr.ndigis > 0){
  37.         printf(" v");
  38.         for(hp = &hdr.digis[0]; hp < &hdr.digis[hdr.ndigis]; hp++){
  39.             /* Print digi string */
  40.             pax25(tmp,hp);
  41.             printf(" %s%s",tmp,(hp->ssid & REPEATED) ? "*":"");
  42.         }
  43.     }
  44.     if(pullup(bpp,&control,1) != 1)
  45.         return;
  46.  
  47.     putchar(' ');
  48.     type = ftype(control);
  49.     printf("%s",decode_type(type));
  50.     /* Dump poll/final bit */
  51.     if(control & PF){
  52.         switch(hdr.cmdrsp){
  53.         case COMMAND:
  54.             printf("(P)");
  55.             break;
  56.         case RESPONSE:
  57.             printf("(F)");
  58.             break;
  59.         default:
  60.             printf("(P/F)");
  61.             break;
  62.         }
  63.     }
  64.     /* Dump sequence numbers */
  65.     if((type & 0x3) != U)    /* I or S frame? */
  66.         printf(" NR=%d",(control>>5)&7);
  67.     if(type == I || type == UI){    
  68.         if(type == I)
  69.             printf(" NS=%d",(control>>1)&7);
  70.         /* Decode I field */
  71.         if(pullup(bpp,&pid,1) == 1){    /* Get pid */
  72.             if(uchar(pid) == PID_SEGMENT){
  73.                 unsegmented = 0;
  74.                 pullup(bpp,&seg,1);
  75.                 printf("%s remain %u",seg & SEG_FIRST ?
  76.                  " First seg;" : "",seg & SEG_REM);
  77.                 if(seg & SEG_FIRST)
  78.                     pullup(bpp,&pid,1);
  79.             } else
  80.                 unsegmented = 1;
  81.  
  82.             switch(uchar(pid)){
  83.             case PID_SEGMENT:
  84.                 printf("\n");
  85.                 break;    /* Already displayed */
  86.             case PID_ARP:
  87.                 printf(" pid=ARP\n");
  88.                 arp_dump(bpp);
  89.                 break;
  90.             case PID_NETROM:
  91.                 printf(" pid=NET/ROM\n");
  92.                 netrom_dump(bpp);
  93.                 break;
  94.             case PID_IP:
  95.                 printf(" pid=IP\n");
  96.                 /* Don't verify checksums unless unsegmented */
  97.                 ip_dump(bpp,unsegmented);
  98.                 break;
  99.             case PID_X25:
  100.                 printf(" pid=X.25\n");
  101.                 break;
  102.             case PID_TEXNET:
  103.                 printf(" pid=TEXNET\n");
  104.                 break;
  105.             case PID_NO_L3:
  106.                 printf(" pid=Text\n");
  107.                 break;
  108.             default:
  109.                 printf(" pid=0x%x\n",pid);
  110.             }
  111.         }
  112.     } else if(type == FRMR && pullup(bpp,tmp,3) == 3){
  113.         printf(": %s",decode_type(ftype(tmp[0])));
  114.         printf(" Vr = %d Vs = %d",(tmp[1] >> 5) & MMASK,
  115.             (tmp[1] >> 1) & MMASK);
  116.         if(tmp[2] & W)
  117.             printf(" Invalid control field");
  118.         if(tmp[2] & X)
  119.             printf(" Illegal I-field");
  120.         if(tmp[2] & Y)
  121.             printf(" Too-long I-field");
  122.         if(tmp[2] & Z)
  123.             printf(" Invalid seq number");
  124.         printf("\n");
  125.     } else
  126.         printf("\n");
  127.  
  128. }
  129. static char *
  130. decode_type(type)
  131. int16 type;
  132. {
  133.     switch(uchar(type)){
  134.     case I:
  135.         return "I";
  136.     case SABM:
  137.         return "SABM";
  138.     case DISC:
  139.         return "DISC";
  140.     case DM:
  141.         return "DM";
  142.     case UA:
  143.         return "UA";
  144.     case RR:
  145.         return "RR";
  146.     case RNR:
  147.         return "RNR";
  148.     case REJ:
  149.         return "REJ";
  150.     case FRMR:
  151.         return "FRMR";
  152.     case UI:
  153.         return "UI";
  154.     default:
  155.         return "[invalid]";
  156.     }
  157. }
  158.  
  159. /* Return 1 if this packet is directed to us, 0 otherwise. Note that
  160.  * this checks only the ultimate destination, not the digipeater field
  161.  */
  162. int
  163. ax_forus(iface,bp)
  164. struct iface *iface;
  165. struct mbuf *bp;
  166. {
  167.     struct mbuf *bpp;
  168.     char buf[AXALEN];
  169.     struct ax25_addr dest,ifcall;
  170.  
  171.     /* Duplicate the destination address */
  172.     if(dup_p(&bpp,bp,0,AXALEN) != AXALEN){
  173.         free_p(bpp);
  174.         return 0;
  175.     }
  176.     if(pullup(&bpp,buf,AXALEN) < AXALEN)
  177.         return 0;
  178.     getaxaddr(&dest,buf);
  179.     memcpy(&ifcall,iface->hwaddr,AXALEN);
  180.     if(addreq(&dest,&ifcall))
  181.         return 1;
  182.     else
  183.         return 0;
  184. }
  185.  
  186.